home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / utility / ini10.zip / ASCII.I next >
Text File  |  1989-02-02  |  2KB  |  39 lines

  1.  
  2. #define A_EOF    '\032'  /* 0x1A ^Z end-of-file          */
  3.  
  4. #define A_NUL    '\000'  /* 0x00 ^@ null                 */
  5. #define A_SOH    '\001'  /* 0x01 ^A start of heading     */
  6. #define A_STX    '\002'  /* 0x02 ^B start of text        */
  7. #define A_ETX    '\003'  /* 0x03 ^C end of text          */
  8. #define A_EOT    '\004'  /* 0x04 ^D end of transmission  */
  9. #define A_ENQ    '\005'  /* 0x05 ^E enquiry              */
  10. #define A_ACK    '\006'  /* 0x06 ^F acknowledge          */
  11. #define A_BEL    '\007'  /* 0x07 ^G bell              \a */
  12. #define A_BS    '\010'  /* 0x08 ^H backspace         \b */
  13. #define A_HT    '\011'  /* 0x09 ^I horizontal tab    \t */
  14. #define A_LF    '\012'  /* 0x0A ^J line feed         \n */
  15. #define A_VT    '\013'  /* 0x0B ^K vertical tab      \v */
  16. #define A_FF    '\014'  /* 0x0C ^L form feed         \f */
  17. #define A_CR    '\015'  /* 0x0D ^M carriage return   \r */
  18. #define A_SO    '\016'  /* 0x0E ^N shift out            */
  19. #define A_SI    '\017'  /* 0x0F ^O shift in             */
  20. #define A_DLE    '\020'  /* 0x10 ^P data link escape     */
  21. #define A_DC1    '\021'  /* 0x11 ^Q device control: xon  */
  22. #define A_DC2    '\022'  /* 0x12 ^R device control: 2    */
  23. #define A_DC3    '\023'  /* 0x13 ^S device control: xoff */
  24. #define A_DC4    '\024'  /* 0x14 ^T device control: 4    */
  25. #define A_NAK    '\025'  /* 0x15 ^U negative acknowledge */
  26. #define A_SYN    '\026'  /* 0x16 ^V synchronous idle     */
  27. #define A_ETB    '\027'  /* 0x17 ^W end of trans. block  */
  28. #define A_CAN    '\030'  /* 0x18 ^X cancel (void data)   */
  29. #define A_EM    '\031'  /* 0x19 ^Y end of medium        */
  30. #define A_SUB    '\032'  /* 0x1A ^Z substitute           */
  31. #define A_ESC    '\033'  /* 0x1B ^[ escape               */
  32. #define A_FS    '\034'  /* 0x1C ^\ file separator   EOF */
  33. #define A_GS    '\035'  /* 0x1D ^] group separator  EOG */
  34. #define A_RS    '\036'  /* 0x1E ^^ record separator EOR */
  35. #define A_US    '\037'  /* 0x1F ^_ unit/field separator */
  36.  
  37. #define A_DEL    '\177'  /* 0x7F    delete               */
  38.  
  39.